home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / xes120.lha / XES / REXX / AddLibraries.xdme next >
Text File  |  1994-11-09  |  636b  |  21 lines

  1. /* AddLibraries.xdme */
  2. /* This adds the libraries used by XES. */
  3.  
  4. if exists("libs:rexxsupport.library") then do
  5.     if ~show("L","rexxsupport.library") then
  6.         call addlib("rexxsupport.library",0,-30,0)
  7. end
  8.     else say "You need RexxSupport.library"
  9.  
  10. if exists("libs:rexxreqtools.library") then do
  11.     if ~show("L","rexxreqtools.library") then
  12.         call addlib("rexxreqtools.library",0,-30)
  13. end
  14.     else say "You need RexxReqTools.library"
  15.  
  16. if exists("libs:rexxarplib.library") then do
  17.     if ~show("L","rexxarplib.library") then
  18.         call addlib("rexxarplib.library",0,-30)
  19. end
  20.     else say "You need RexxArpLib.library"
  21.